home *** CD-ROM | disk | FTP | other *** search
XSetup plugin | 2001-05-08 | 1.2 KB | 44 lines |
- "FILE"="Xteq Systems X-Setup Plugin 6.0"
- "TYPE"="6"
- "COUNT"="1"
- "UIPATH"="Network\Auto Login\Windows 98/ME"
- "NAME"="Settings"
- "VERSION"="1.09"
- "OSVERSION"="00101"
- "LANGUAGE"="VBScript"
- "TEXT 1"="Logon to Network"
- "DESCRIPTION 1"="To disable logon requirement [allow anonymous user], check box."
- "AUTHOR"="Ojatex@aol.com"
- "CONTACTURL"="http://members.aol.com/ojatex/"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "COMMENT 1"=" "
-
-
- Sub Plugin_Initialize
- i=RegReadValue("HKLM\Software\Microsoft\Windows\CurrentVersion\Network\Real Mode Net\AutoLogon")
- if i="00" then SetUIElement 1,true
- End Sub
-
-
- Sub Plugin_CheckData(ElementIndex)
- End Sub
-
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- b=GetUIElement(1)
- if b=true then
- Call RegWriteValue("HKLM\Software\Microsoft\Windows\CurrentVersion\Network\Real Mode Net\AutoLogon","00",3)
- else
- if RegValueExists("HKLM\Software\Microsoft\Windows\CurrentVersion\Network\Real Mode Net\AutoLogon")=true then
- Call RegDeleteValue("HKLM\Software\Microsoft\Windows\CurrentVersion\Network\Real Mode Net\AutoLogon")
- end if
- end if
-
- End Sub
-
-
- Sub Plugin_Terminate
- End Sub
-
-
-
-